/* * Sun Public License Notice * * The contents of this file are subject to the Sun Public License * Version 1.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original * Code is Sun Microsystems, Inc. Portions Copyright 1997-2001 Sun * Microsystems, Inc. All Rights Reserved. */ package org.netbeans.modules.rmi.wizard; /** * * @author mryzl * @version */ public class RMIExecutorPanel extends AbstractWizardPanel { static final long serialVersionUID =434412397305020817L; /** Creates new form RMIExecutorPanel */ public RMIExecutorPanel() { initComponents (); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the FormEditor. */ private void initComponents () {//GEN-BEGIN:initComponents setLayout (new java.awt.GridBagLayout ()); java.awt.GridBagConstraints gridBagConstraints1; setBorder (new javax.swing.border.EmptyBorder(new java.awt.Insets(10, 10, 10, 10))); setPreferredSize (new java.awt.Dimension(480, 320)); jLabel1 = new javax.swing.JLabel (); jLabel1.setText ("Executor"); jLabel1.setFont (new java.awt.Font ("Dialog", 0, 18)); gridBagConstraints1 = new java.awt.GridBagConstraints (); gridBagConstraints1.fill = java.awt.GridBagConstraints.HORIZONTAL; gridBagConstraints1.insets = new java.awt.Insets (2, 2, 5, 2); gridBagConstraints1.weightx = 1.0; add (jLabel1, gridBagConstraints1); jList1 = new javax.swing.JList (); gridBagConstraints1 = new java.awt.GridBagConstraints (); gridBagConstraints1.gridx = 0; gridBagConstraints1.gridy = 1; gridBagConstraints1.fill = java.awt.GridBagConstraints.BOTH; gridBagConstraints1.weightx = 1.0; gridBagConstraints1.weighty = 1.0; add (jList1, gridBagConstraints1); }//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel jLabel1; private javax.swing.JList jList1; // End of variables declaration//GEN-END:variables // WizardDialog.Panel public void readRMISettings(RMIWizardData data) { } public void storeRMISettings(RMIWizardData data) { } public boolean isValid() { return true; } } /* * <<Log>> * 3 Gandalf 1.2 11/27/99 Patrik Knakal * 2 Gandalf 1.1 10/23/99 Ian Formanek NO SEMANTIC CHANGE - Sun * Microsystems Copyright in File Comment * 1 Gandalf 1.0 7/22/99 Martin Ryzl * $ */